home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / AUDIO / SWEEPGEN / MAINFORM.DFM / MAINFORM.txt < prev   
Text File  |  1996-05-31  |  3KB  |  156 lines

  1. object Form1: TForm1
  2.   Left = 212
  3.   Top = 104
  4.   BorderStyle = bsSingle
  5.   Caption = 'David'#39's Audio Sweep Generator'
  6.   ClientHeight = 285
  7.   ClientWidth = 423
  8.   Font.Color = clBlack
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Icon.Data = {<image000.ico>}
  13.   OnCloseQuery = FormCloseQuery
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Panel1: TPanel
  19.     Left = 0
  20.     Top = 0
  21.     Width = 423
  22.     Height = 232
  23.     Align = alClient
  24.     TabOrder = 0
  25.     object Label1: TLabel
  26.       Left = 72
  27.       Top = 168
  28.       Width = 25
  29.       Height = 13
  30.       Alignment = taCenter
  31.       Caption = 'to'
  32.     end
  33.     object Label2: TLabel
  34.       Left = 152
  35.       Top = 168
  36.       Width = 16
  37.       Height = 13
  38.       Caption = ' Hz'
  39.     end
  40.     object lblFnow: TLabel
  41.       Left = 48
  42.       Top = 200
  43.       Width = 41
  44.       Height = 13
  45.       Caption = 'fNow Hz'
  46.     end
  47.     object grpFrequencyRange: TRadioGroup
  48.       Left = 8
  49.       Top = 8
  50.       Width = 161
  51.       Height = 137
  52.       Caption = ' Frequency Range '
  53.       Items.Strings = (
  54.         'Wide  (20Hz .. 20KHz)'
  55.         'HF  (1KHz .. 15KHz)'
  56.         'Speech  (300Hz .. 3KHz)'
  57.         'LF  (50Hz .. 1KHz)')
  58.       TabOrder = 0
  59.       OnClick = grpFrequencyRangeClick
  60.     end
  61.     object grpSweepMode: TRadioGroup
  62.       Left = 192
  63.       Top = 8
  64.       Width = 113
  65.       Height = 65
  66.       Caption = ' Sweep Mode '
  67.       Items.Strings = (
  68.         'Linear'
  69.         'Log')
  70.       TabOrder = 1
  71.       OnClick = grpSweepModeClick
  72.     end
  73.     object grpSweepSpeed: TRadioGroup
  74.       Left = 192
  75.       Top = 96
  76.       Width = 113
  77.       Height = 121
  78.       Hint = ' Changes the time between start and end of sweep '
  79.       Caption = ' Sweep Speed '
  80.       Items.Strings = (
  81.         'Fast (smooth)'
  82.         'Fast (stepped)'
  83.         'Slow'
  84.         'No sweep')
  85.       ParentShowHint = False
  86.       ShowHint = True
  87.       TabOrder = 2
  88.       OnClick = grpSweepSpeedClick
  89.     end
  90.     object grpOutputLevel: TRadioGroup
  91.       Left = 328
  92.       Top = 8
  93.       Width = 81
  94.       Height = 209
  95.       Hint = ' Click to alter the volume '
  96.       Caption = ' Output Level '
  97.       Items.Strings = (
  98.         '0dB'
  99.         '-3dB'
  100.         '-6dB'
  101.         '-9dB'
  102.         '-12dB'
  103.         '-15dB'
  104.         '-18dB'
  105.         '-20dB')
  106.       ParentShowHint = False
  107.       ShowHint = True
  108.       TabOrder = 3
  109.       OnClick = grpOutputLevelClick
  110.     end
  111.     object edtF1: TEdit
  112.       Left = 16
  113.       Top = 168
  114.       Width = 57
  115.       Height = 20
  116.       TabOrder = 4
  117.       Text = 'F1'
  118.     end
  119.     object edtF2: TEdit
  120.       Left = 96
  121.       Top = 168
  122.       Width = 49
  123.       Height = 20
  124.       TabOrder = 5
  125.       Text = 'F2'
  126.     end
  127.   end
  128.   object Panel2: TPanel
  129.     Left = 0
  130.     Top = 232
  131.     Width = 423
  132.     Height = 53
  133.     Align = alBottom
  134.     TabOrder = 1
  135.     object btnExit: TButton
  136.       Left = 344
  137.       Top = 16
  138.       Width = 57
  139.       Height = 25
  140.       Caption = 'Exit'
  141.       TabOrder = 0
  142.       OnClick = btnExitClick
  143.     end
  144.     object btnStart: TButton
  145.       Left = 176
  146.       Top = 16
  147.       Width = 57
  148.       Height = 25
  149.       Caption = 'Start'
  150.       Default = True
  151.       TabOrder = 1
  152.       OnClick = btnStartClick
  153.     end
  154.   end
  155. end
  156.